Mar 14, 2007, 04:38 PM // 16:38
|
#2
|
Technician's Corner Moderator
Join Date: Jan 2006
Location: The TARDIS
Guild: http://www.lunarsoft.net/ http://forums.lunarsoft.net/
|
Since people can simply make the batch file, paste the code into a codebox?
|
|
|
Mar 14, 2007, 06:22 PM // 18:22
|
#3
|
Forge Runner
Join Date: Nov 2005
Location: Stoke, England
Guild: The Godless [GOD]
Profession: W/
|
Forgive me if I give this a miss, and also advise other people to ignore it too.
|
|
|
Mar 14, 2007, 06:39 PM // 18:39
|
#4
|
Academy Page
|
Quote:
Originally Posted by Azagoth
Forgive me if I give this a miss, and also advise other people to ignore it too.
|
Uh, why would you advise others to do the same?
Quote:
Originally Posted by Tarun
Since people can simply make the batch file, paste the code into a codebox?
|
Thought it would be easier this way.
Code:
@echo off
cls
title Guild Wars Launcher
:menu
cls
echo How do you want to run Guild Wars?
echo.
echo -----------------------------
echo 1. No switches (normal)
echo 2. No sound
echo 3. DirectX 8
echo 4. DirectX 8, no sound
echo 5. Update
echo.
echo 6. Exit
echo -----------------------------
echo.
set /p choice=Select an option:
if %choice% equ 0 goto menu
if %choice% equ 1 goto normaal
if %choice% equ 2 goto nosound
if %choice% equ 3 goto dx8
if %choice% equ 4 goto nosounddx8
if %choice% equ 5 goto update
if %choice% equ 6 goto afsluiten
:niks:
cls
goto menu
:normaal:
cls
echo.
echo You have selected the following option:
echo.
echo No switches (normal)
echo.
echo The game will run without any switches.
echo.
pause
start Gw.exe
exit
:nosound:
cls
echo.
echo You have selected the following option:
echo.
echo No sound
echo.
echo The game will run with the following switches:
echo -nosound
echo -mute
echo.
pause
start Gw.exe -nosound -mute
exit
:dx8:
cls
echo.
echo You have selected the following option:
echo.
echo DirectX 8
echo.
echo The game will run with the following switches:
echo -dx8
echo.
pause
start Gw.exe -dx8
exit
:nosounddx8:
cls
echo.
echo You have selected the following option:
echo.
echo DirectX 8, no sound
echo.
echo The game will run with the following switches:
echo -dx8
echo -mute
echo -nosound
echo.
pause
start Gw.exe -nosound -mute -dx8
exit
:update:
cls
echo.
echo You have selected the following option:
echo.
echo Update
echo.
echo The game will run with the following switches:
echo -image
echo.
pause
start Gw.exe -image
exit
|
|
|
Mar 15, 2007, 03:41 AM // 03:41
|
#5
|
Technician's Corner Moderator
Join Date: Jan 2006
Location: The TARDIS
Guild: http://www.lunarsoft.net/ http://forums.lunarsoft.net/
|
Thanks for posting the code. It allows others to avoid the download limit and check for anything suspicious. Can't be too careful in this day and age.
|
|
|
Mar 15, 2007, 03:55 AM // 03:55
|
#6
|
Desert Nomad
Join Date: Nov 2006
Location: Garden City, Idaho
Guild: The Order of Relumination (TOoR)
Profession: R/
|
download limit? What ya mean?
As for the batch file. Sure, don't execute strange batch files without looking at them.
Being safe is a good thing, but people need to stop being overly...well, paranoid.
Saving a small *.bat file to your PC and then opening it with a program like notepad, isn't "dangerous" at all.
|
|
|
Mar 15, 2007, 01:24 PM // 13:24
|
#7
|
Academy Page
Join Date: Feb 2006
Location: Virginia Beach
Guild: XoO
Profession: R/
|
I have a quick question. What is choice 6? afsluiten?? I don't see that as a menu option in the rest of the code and am unaware of any command like that. Other than that, the code is pretty straight foreward.
|
|
|
Mar 15, 2007, 04:25 PM // 16:25
|
#8
|
Academy Page
|
Quote:
Originally Posted by jjdefan
I have a quick question. What is choice 6? afsluiten?? I don't see that as a menu option in the rest of the code and am unaware of any command like that. Other than that, the code is pretty straight foreward.
|
Oh, I forgot about that, but it still works. Afsluiten is dutch for exit.
|
|
|
Thread Tools |
|
Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT. The time now is 11:26 AM // 11:26.
|